These constants are used with the RemoteData control's EOFAction property to determine how RDO behaves when the rdoResultset object's EOF property changes state.
Constant | Value | Description |
rdMoveLast | 0 | MoveLast (Default): Keeps the last row as the current row. |
rdEOF | 1 | EOF: Moving past the end of an rdoResultset triggers the RemoteData control's Validation event on the last row, followed by a Reposition event on the invalid (EOF) row. At this point, the Move Next button on the RemoteData control is disabled. |
rdAddNew | 2 | AddNew: Moving past the last row triggers the RemoteData control's Validation event to occur on the current row, followed by an automatic AddNew, followed by a Reposition event on the new row. |